home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / mint110s.zoo / shmfs.c < prev    next >
C/C++ Source or Header  |  1994-02-11  |  15KB  |  707 lines

  1. /*
  2. Copyright 1992,1993 Eric R. Smith.
  3. Copyright 1993,1994 Atari Corporation.
  4. All rights reserved.
  5.  */
  6.  
  7. /* Shared memory file system */
  8.  
  9. #include "mint.h"
  10.  
  11.  
  12. static long    ARGS_ON_STACK shm_root    P_((int drv, fcookie *fc));
  13. static long    ARGS_ON_STACK shm_creat    P_((fcookie *dir, const char *name, unsigned mode,
  14.                     int attrib, fcookie *fc));
  15. static long    ARGS_ON_STACK shm_lookup    P_((fcookie *dir, const char *name, fcookie *fc));
  16. static long    ARGS_ON_STACK shm_getxattr    P_((fcookie *fc, XATTR *xattr));
  17. static long    ARGS_ON_STACK shm_chattr    P_((fcookie *fc, int attrib));
  18. static long    ARGS_ON_STACK shm_chown    P_((fcookie *fc, int uid, int gid));
  19. static long    ARGS_ON_STACK shm_chmode    P_((fcookie *fc, unsigned mode));
  20. static long    ARGS_ON_STACK shm_rmdir    P_((fcookie *dir, const char *name));
  21. static long    ARGS_ON_STACK shm_remove    P_((fcookie *dir, const char *name));
  22. static long    ARGS_ON_STACK shm_getname    P_((fcookie *root, fcookie *dir,
  23.                             char *pathname, int size));
  24. static long    ARGS_ON_STACK shm_rename    P_((fcookie *olddir, char *oldname,
  25.                     fcookie *newdir, const char *newname));
  26. static long    ARGS_ON_STACK shm_opendir    P_((DIR *dirh, int flags));
  27. static long    ARGS_ON_STACK shm_readdir    P_((DIR *dirh, char *nm, int nmlen, fcookie *));
  28. static long    ARGS_ON_STACK shm_rewinddir    P_((DIR *dirh));
  29. static long    ARGS_ON_STACK shm_closedir    P_((DIR *dirh));
  30. static long    ARGS_ON_STACK shm_pathconf    P_((fcookie *dir, int which));
  31. static long    ARGS_ON_STACK shm_dfree    P_((fcookie *dir, long *buf));
  32. static DEVDRV *    ARGS_ON_STACK shm_getdev    P_((fcookie *fc, long *devsp));
  33.  
  34. static long    ARGS_ON_STACK shm_open    P_((FILEPTR *f));
  35. static long    ARGS_ON_STACK shm_write    P_((FILEPTR *f, const char *buf, long bytes));
  36. static long    ARGS_ON_STACK shm_read    P_((FILEPTR *f, char *buf, long bytes));
  37. static long    ARGS_ON_STACK shm_lseek    P_((FILEPTR *f, long where, int whence));
  38. static long    ARGS_ON_STACK shm_ioctl    P_((FILEPTR *f, int mode, void *buf));
  39. static long    ARGS_ON_STACK shm_datime    P_((FILEPTR *f, short *time, int rwflag));
  40. static long    ARGS_ON_STACK shm_close    P_((FILEPTR *f, int pid));
  41.  
  42. /* dummy routines from biosfs.c */
  43. extern long    ARGS_ON_STACK null_select    P_((FILEPTR *f, long p, int mode));
  44. extern void    ARGS_ON_STACK null_unselect    P_((FILEPTR *f, long p, int mode));
  45.  
  46. static short shmtime, shmdate;
  47.  
  48. #define SHMNAME_MAX 15
  49.  
  50. typedef struct shmfile {
  51.     struct shmfile *next;
  52.     char filename[SHMNAME_MAX+1];
  53.     int uid, gid;
  54.     short time, date;
  55.     unsigned mode;
  56.     int inuse;
  57.     MEMREGION *reg;
  58. } SHMFILE;
  59.  
  60. SHMFILE *shmroot = 0;
  61.  
  62. DEVDRV shm_device = {
  63.     shm_open, shm_write, shm_read, shm_lseek, shm_ioctl, shm_datime,
  64.     shm_close, null_select, null_unselect
  65. };
  66.  
  67. FILESYS shm_filesys = {
  68.     (FILESYS *)0,
  69.     FS_LONGPATH,
  70.     shm_root,
  71.     shm_lookup, shm_creat, shm_getdev, shm_getxattr,
  72.     shm_chattr, shm_chown, shm_chmode,
  73.     nomkdir, shm_rmdir, shm_remove, shm_getname, shm_rename,
  74.     shm_opendir, shm_readdir, shm_rewinddir, shm_closedir,
  75.     shm_pathconf, shm_dfree,
  76.     nowritelabel, noreadlabel, nosymlink, noreadlink, nohardlink,
  77.     nofscntl, nodskchng
  78. };
  79.  
  80. long ARGS_ON_STACK 
  81. shm_root(drv, fc)
  82.     int drv;
  83.     fcookie *fc;
  84. {
  85.     if ((unsigned)drv == SHMDRV) {
  86.         fc->fs = &shm_filesys;
  87.         fc->dev = drv;
  88.         fc->index = 0L;
  89.         return 0;
  90.     }
  91.     fc->fs = 0;
  92.     return EINTRN;
  93. }
  94.  
  95. static long ARGS_ON_STACK 
  96. shm_lookup(dir, name, fc)
  97.     fcookie *dir;
  98.     const char *name;
  99.     fcookie *fc;
  100. {
  101.     SHMFILE *s;
  102.  
  103.     if (dir->index != 0) {
  104.         DEBUG(("shm_lookup: bad directory"));
  105.         return EPTHNF;
  106.     }
  107.  
  108. /* special case: an empty name in a directory means that directory */
  109. /* so does "." */
  110.     if (!*name || (name[0] == '.' && name[1] == 0)) {
  111.         *fc = *dir;
  112.         return 0;
  113.     }
  114.  
  115. /* another special case: ".." could be a mount point */
  116.     if (!strcmp(name, "..")) {
  117.         *fc = *dir;
  118.         return EMOUNT;
  119.     }
  120.  
  121.     for (s = shmroot; s; s = s->next) {
  122.         if (!stricmp(s->filename,name))
  123.             break;
  124.     }
  125.  
  126.     if (!s) {
  127.         DEBUG(("shm_lookup: name not found"));
  128.         return EFILNF;
  129.     } else {
  130.         fc->index = (long)s;
  131.         fc->fs = &shm_filesys;
  132.         fc->dev = SHMDRV;
  133.     }
  134.     return 0;
  135. }
  136.  
  137. static long ARGS_ON_STACK 
  138. shm_getxattr(fc, xattr)
  139.     fcookie *fc;
  140.     XATTR *xattr;
  141. {
  142.     SHMFILE *s;
  143.  
  144.     xattr->blksize = 1;
  145.     if (fc->index == 0) {
  146.         /* the root directory */
  147.         xattr->index = 0;
  148.         xattr->dev = xattr->rdev = SHMDRV;
  149.         xattr->nlink = 1;
  150.         xattr->uid = xattr->gid = 0;
  151.         xattr->size = xattr->nblocks = 0;
  152.         xattr->mtime = xattr->atime = xattr->ctime = shmtime;
  153.         xattr->mdate = xattr->adate = xattr->cdate = shmdate;
  154.         xattr->mode = S_IFDIR | DEFAULT_DIRMODE;
  155.         xattr->attr = FA_DIR;
  156.         return 0;
  157.     }
  158.  
  159.     s = (SHMFILE *)fc->index;
  160.     xattr->index = (long) s;
  161.     xattr->dev = SHMDRV;
  162.     xattr->rdev = PROC_RDEV_BASE | 0;
  163.     xattr->uid = s->uid; xattr->gid = s->gid;
  164.     if (s->reg) {
  165.         xattr->size = xattr->nblocks = s->reg->len;
  166.         xattr->nlink = s->reg->links + 1;
  167.      } else {
  168.         xattr->size = xattr->nblocks = 0;
  169.         xattr->nlink = 1;
  170.     }
  171.     xattr->mtime = xattr->ctime = xattr->atime = s->time;
  172.     xattr->mdate = xattr->cdate = xattr->adate = s->date;
  173.     xattr->mode = s->mode;
  174.     xattr->attr = (s->mode & (S_IWUSR|S_IWGRP|S_IWOTH)) ? 0 : 
  175.             FA_RDONLY;
  176.     return 0;
  177. }
  178.  
  179. static long ARGS_ON_STACK 
  180. shm_chattr(fc, attrib)
  181.     fcookie *fc;
  182.     int attrib;
  183. {
  184.     SHMFILE *s;
  185.  
  186.     s = (SHMFILE *)fc->index;
  187.     if (!s) return EACCDN;
  188.  
  189.     if (attrib & FA_RDONLY) {
  190.         s->mode &= ~(S_IWUSR|S_IWGRP|S_IWOTH);
  191.     } else if ( !(s->mode & (S_IWUSR|S_IWGRP|S_IWOTH)) ) {
  192.         s->mode |= (S_IWUSR|S_IWGRP|S_IWOTH);
  193.     }
  194.     return 0;
  195. }
  196.  
  197. static long ARGS_ON_STACK 
  198. shm_chown(fc, uid, gid)
  199.     fcookie *fc;
  200.     int uid, gid;
  201. {
  202.     SHMFILE *s;
  203.  
  204.     s = (SHMFILE *)fc->index;
  205.     if (!s)
  206.         return EACCDN;
  207.     s->uid = uid;
  208.     s->gid = gid;
  209.     return 0;
  210. }
  211.  
  212. static long ARGS_ON_STACK 
  213. shm_chmode(fc, mode)
  214.     fcookie *fc;
  215.     unsigned mode;
  216. {
  217.     SHMFILE *s;
  218.  
  219.     s = (SHMFILE *)fc->index;
  220.     if (!s)
  221.         return EINVFN;
  222.     s->mode = mode;
  223.     return 0;
  224. }
  225.  
  226. static long ARGS_ON_STACK 
  227. shm_rmdir(dir, name)
  228.     fcookie *dir;
  229.     const char *name;
  230. {
  231.     UNUSED(dir); UNUSED(name);
  232.  
  233.     return EPTHNF;
  234. }
  235.  
  236. static long ARGS_ON_STACK 
  237. shm_remove(dir, name)
  238.     fcookie *dir;
  239.     const char *name;
  240. {
  241.     SHMFILE *s, **old;
  242.  
  243.     if (dir->index != 0)
  244.         return EPTHNF;
  245.  
  246.     old = &shmroot;
  247.     for (s = shmroot; s; s = s->next) {
  248.         if (!stricmp(s->filename, name))
  249.             break;
  250.         old = &s->next;
  251.     }
  252.     if (!s)
  253.         return EFILNF;
  254.     if (s->inuse)
  255.         return EACCDN;
  256.     *old = s->next;
  257.  
  258.     s->reg->links--;
  259.     if (s->reg->links <= 0) {
  260.         free_region(s->reg);
  261.     }
  262.     kfree(s);
  263.     shmtime = timestamp;
  264.     shmdate = datestamp;
  265.     return 0;
  266. }
  267.  
  268. static long ARGS_ON_STACK 
  269. shm_getname(root, dir, pathname, size)
  270.     fcookie *root, *dir; char *pathname;
  271.     int size;
  272. {
  273.     UNUSED(root); UNUSED(dir);
  274.  
  275. /* BUG: 'size' should be used in a more meaningful way */
  276.     if (size <= 0) return ERANGE;
  277.     *pathname = 0;
  278.     return 0;
  279. }
  280.  
  281. static long ARGS_ON_STACK 
  282. shm_rename(olddir, oldname, newdir, newname)
  283.     fcookie *olddir;
  284.     char *oldname;
  285.     fcookie *newdir;
  286.     const char *newname;
  287. {
  288.     SHMFILE *s;
  289.  
  290.     if (olddir->index != 0 || newdir->index != 0)
  291.         return EPTHNF;
  292.  
  293. /* verify that "newname" doesn't exist */
  294.     for (s = shmroot; s; s = s->next)
  295.         if (!stricmp(s->filename, newname))
  296.             return EACCDN;
  297.  
  298.     for (s = shmroot; s; s = s->next)
  299.         if (!stricmp(s->filename, oldname))
  300.             break;
  301.     if (!s)
  302.         return EFILNF;
  303.  
  304.     strncpy(s->filename, newname, SHMNAME_MAX);
  305.     shmtime = timestamp;
  306.     shmdate = datestamp;
  307.     return 0;
  308. }
  309.  
  310. static long ARGS_ON_STACK 
  311. shm_opendir(dirh, flags)
  312.     DIR *dirh;
  313.     int flags;
  314. {
  315.     UNUSED(flags);
  316.  
  317.     dirh->index = 0;
  318.     return 0;
  319. }
  320.  
  321. static long ARGS_ON_STACK 
  322. shm_readdir(dirh, name, namelen, fc)
  323.     DIR *dirh;
  324.     char *name;
  325.     int namelen;
  326.     fcookie *fc;
  327. {
  328.     int i;
  329.     int giveindex = (dirh->flags == 0);
  330.     SHMFILE *s;
  331.  
  332.     s = shmroot;
  333.     i = dirh->index++;
  334.     while (i > 0 && s != 0) {
  335.         s = s->next;
  336.         --i;
  337.     }
  338.     if (!s)
  339.         return ENMFIL;
  340.  
  341.     fc->index = (long)s;
  342.     fc->fs = &shm_filesys;
  343.     fc->dev = SHMDRV;
  344.  
  345.     if (giveindex) {
  346.         namelen -= (int)sizeof(long);
  347.         if (namelen <= 0) return ERANGE;
  348.         *((long *)name) = (long)s;
  349.         name += sizeof(long);
  350.     }
  351.     if (namelen < strlen(s->filename))
  352.         return ENAMETOOL